home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / INSERT BUTTONWIDTH.SCRIPT < prev    next >
Encoding:
Text File  |  1998-01-06  |  589 b   |  27 lines

  1. !!Script
  2. // Copyright ⌐ 1997-1998 - Modelworks Software
  3.  
  4. // Insert script helper for:
  5.  
  6. /**
  7. @Object: ToolBar 
  8. @Property: buttonWidth - use this property to get and set 
  9. the button width in a toolbar. 
  10. @Syntax: toolbar.buttonWidth
  11. @Summary: buttonWidth - use this property to get and set the button width in a toolbar 
  12. */
  13.  
  14.  
  15. function DoCommand()
  16. {
  17.   var editor = getActiveEditor();
  18.   if (editor)
  19.   {
  20.     var selection = editor.getSelection();
  21.     editor.replace("toolbar.buttonWidth", selection);
  22.     editor.setActive("Insert toolbar.buttonWidth");
  23.   }
  24. }
  25.  
  26. !!/Script
  27.